home *** CD-ROM | disk | FTP | other *** search
- package java.util;
-
- import java.io.Serializable;
-
- class TreeMap$SubMap extends AbstractMap<K, V> implements SortedMap<K, V>, Serializable {
- private static final long serialVersionUID = -6520786458950516097L;
- private boolean fromStart;
- private boolean toEnd;
- private K fromKey;
- private K toKey;
- // $FF: synthetic field
- final TreeMap this$0;
-
- private TreeMap$SubMap(TreeMap var1) {
- this.this$0 = var1;
- this.fromStart = false;
- this.toEnd = false;
- }
-
- private Object readResolve() {
- return new TreeMap.AscendingSubMap(this.this$0, this.fromStart, this.fromKey, true, this.toEnd, this.toKey, false);
- }
-
- public Set<Map.Entry<K, V>> entrySet() {
- throw new InternalError();
- }
-
- public K lastKey() {
- throw new InternalError();
- }
-
- public K firstKey() {
- throw new InternalError();
- }
-
- public SortedMap<K, V> subMap(K var1, K var2) {
- throw new InternalError();
- }
-
- public SortedMap<K, V> headMap(K var1) {
- throw new InternalError();
- }
-
- public SortedMap<K, V> tailMap(K var1) {
- throw new InternalError();
- }
-
- public Comparator<? super K> comparator() {
- throw new InternalError();
- }
- }
-